home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 20
/
Cream of the Crop 20 (Terry Blount) (1996).iso
/
os2
/
epmgcc30.zip
/
VACPPSET.E
< prev
next >
Wrap
Text File
|
1996-06-22
|
2KB
|
41 lines
/*
╔══════════════════════════════════════════════════════════════════════════════╗
║ What's it called: EPMGCC V3.00 ║
║ ║
║ What does it do: The E source code for the GCC-Interface for EPM. ║
║ This file contains the code which changes global constants ║
║ in order to use EPMGCC with Visual Age C++. ║
║ Compile this module, but don't include it into the base ║
║ set of macros. It is intended to be used as an implicitly ║
║ loaded module, executed from the command line (issue ║
║ vacppset from the command line and EPM will search in ║
║ your paths for vacppset.ex). See the documentation for ║
║ details. ║
║ ║
║ Who and When: B. Bablok 12/93 - 07/96 ║
║ ║
╚══════════════════════════════════════════════════════════════════════════════╝
*/
TRYINCLUDE 'gccenv.e'
DEFMAIN
UNIVERSAL gcc_edit_cmd, gcc_compile_cmd, gcc_build_cmd, gcc_debug_cmd,
gcc_d_comp_options, gcc_p_comp_options, gcc_d_make_options,
gcc_p_make_options, gcc_translate, gcc_parser_mod
gcc_edit_cmd = 'start /c /win epro' -- makefile edit
gcc_compile_cmd = 'start /n /win icc' -- compiler is icc
gcc_build_cmd = 'start /n /win make' -- use gnu-make
gcc_debug_cmd = 'start /n /pm icsdebug' -- use icsdebug
gcc_translate = 0 -- don't translate \ to / in filenames
gcc_d_comp_options = '/C+ /Gd+ /Ti+ /Tm+ /W2 /Wpro+uni %*'
gcc_p_comp_options = '/Gd+ /Gf+ /O+ /Ol+ /Fe%**P%**N.exe %*'
gcc_d_make_options = '-k -f %* MODE=D'
gcc_p_make_options = '-k -f %* MODE=P'
'UNLINK' gcc_parser_mod -- discard old error-parser
'LINK iccparse' -- iccparse.ex must be available
gcc_parser_mod = 'iccparse' -- save module-name